home *** CD-ROM | disk | FTP | other *** search
/ Turnbull China Bikeride / Turnbull China Bikeride - Disc 2.iso / STUTTGART / GRAPHICS / RAYTRACING / POVRAY-2.2 / SCENES / math / TEARDROP < prev    next >
Text File  |  1993-09-28  |  659b  |  37 lines

  1. // Persistence Of Vision raytracer version 2.0 sample file.
  2.  
  3. // Sample qaurtic file 
  4. // by Alexander Enzmann
  5.  
  6. #include "shapes.inc"
  7. #include "colors.inc"
  8. #include "textures.inc"
  9. #include "shapesq.inc"
  10.  
  11. object {
  12.    Piriform
  13.    sturm
  14.    rotate -90*z
  15.    translate 0.5*y
  16.    scale <2, 10, 2>
  17.  
  18.    texture {
  19.       pigment { SteelBlue }
  20.       finish {
  21.          phong 1.0
  22.          phong_size 20
  23.          ambient 0.2
  24.          diffuse 0.8
  25.       }
  26.    }
  27. }
  28.  
  29. camera {
  30.    location  <0.0, 0.0, -12.0>
  31.    up        <0.0, 1.0,  0.0>
  32.    right     <4/3, 0.0,  0.0>
  33.    look_at   <0.0, 0.0,  0.0>
  34. }
  35.  
  36. light_source { <200, 30, -500> colour White }
  37.